home *** CD-ROM | disk | FTP | other *** search
/ Champak 66 / Vol 66.iso / games / compulse.swf / scripts / DefineSprite_313 / frame_1 / DoAction.as
Encoding:
Text File  |  2013-04-24  |  210 b   |  10 lines

  1. onEnterFrame = function()
  2. {
  3.    if(this.hitTest(_root.ball) && _root.yVel < 0)
  4.    {
  5.       _root.yVel = Math.abs(_root.yVel);
  6.       _root.ball._y = this._y + _root.radius;
  7.       _root.yDamper();
  8.    }
  9. };
  10.